home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Tools / modulator / Templates / module_method < prev    next >
Text File  |  1995-12-21  |  237b  |  17 lines

  1.  
  2. static char $abbrev$_$method$__doc__[] =
  3. ""
  4. ;
  5.  
  6. static PyObject *
  7. $abbrev$_$method$(self, args)
  8.     PyObject *self;    /* Not used */
  9.     PyObject *args;
  10. {
  11.  
  12.     if (!PyArg_ParseTuple(args, ""))
  13.         return NULL;
  14.     Py_INCREF(Py_None);
  15.     return Py_None;
  16. }
  17.